fichiers en php

31

<?php
  // new file
 $newfile = fopen("textfile.txt", "w");
 $str = "random text";
 fwrite($newfile, $str);
 fclose($newfile);
?>
<?php
// Lire le fichier dans un tableau (morceaux)
$str = '';$fp = fopen('https://www.apcpedagogie.com', 'r') or die('ERROR: Ne peut pas ouvrir le fichier');
while (!feof($fp)) {
 $str .= fgets($fp,512);
}
fclose($fp);
echo $str;
?>

Comments

Submit
0 Comments